home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / danix201.zip / CAT.1 next >
Text File  |  1994-01-13  |  1KB  |  38 lines

  1. CAT(1)                Danix Utilities                CAT(1)
  2.  
  3. NAME
  4.     cat - catenate files
  5.  
  6. SYNOPSIS
  7.     cat [ -benrstv ] files ...
  8.  
  9. DESCRIPTION
  10.  
  11.     cat reads each file in the file list and prints it to standard output.
  12.  
  13.     If no files are given, or a '-' is encountered in the file list, input
  14.     is taken from standard input.
  15.  
  16.     -b Display line numbers, as with -n, but omit numbers from blank lines.
  17.  
  18.     -e Display non-printing characters, as with -v, and also display a
  19.        $ at the end of each line.
  20.  
  21.     -n Display the line numbers before each line.
  22.  
  23.     -r Display non-printing characters, as with -v, including the
  24.        carriage return and linefeed characters.
  25.  
  26.     -s Suppress the printing of multiple adjacent blank lines.
  27.  
  28.     -t Display non-printing characters, as with -v, and also display
  29.        the tab character as ^I (CTRL-I).
  30.  
  31.     -v Display non-printing characters so that they are visible.  Control
  32.        characters are printed preceded by a '^'.  The delete character is
  33.        printed as '^?'.  Characters with the high-bit set are printed as
  34.        'M-' followed by the character of the lower seven bits. Carriage
  35.        return and linefeed characters are printed without any change unless
  36.        the -r option is specified as well.
  37.  
  38.